projects
/
gtk+3.0.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
908d4f1
)
defaultvalue: Fix some very broken indentation
author
Daniel Boles
<dboles.src@gmail.com>
Fri, 29 Jun 2018 18:57:06 +0000
(19:57 +0100)
committer
Daniel Boles
<dboles.src@gmail.com>
Fri, 29 Jun 2018 18:57:06 +0000
(19:57 +0100)
and while here, use the more typical : to separate the type and property
testsuite/gtk/defaultvalue.c
patch
|
blob
|
history
diff --git
a/testsuite/gtk/defaultvalue.c
b/testsuite/gtk/defaultvalue.c
index 1f73fa5825fbcc30cbf6a4ed04657e374248f51b..e0e28a485cd44e72ad4bce9f38add9912af37e5a 100644
(file)
--- a/
testsuite/gtk/defaultvalue.c
+++ b/
testsuite/gtk/defaultvalue.c
@@
-363,9
+363,12
@@
G_GNUC_END_IGNORE_DEPRECATIONS
continue;
if (g_test_verbose ())
- g_print ("Property %s.%s\n",
- g_type_name (pspec->owner_type),
- pspec->name);
+ {
+ g_print ("Property %s:%s\n",
+ g_type_name (pspec->owner_type),
+ pspec->name);
+ }
+
g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
g_object_get_property (instance, pspec->name, &value);
check_property ("Property", pspec, &value);